08. Attributes and Selectors
Attributes and Selectors
INSTRUCTOR NOTE:
Tag Selector
h1 {
color: green;
}
class Attribute Selector
.book-summary {
color: blue;
}
id attribute selector
#site-description {
color: red;
}